{% extends 'core/_base.html' %} {% block title %} Manage Brand {% endblock title %} {% block body %}
Manage Brand
{% if brand %}
{% for item in brand %} {%if item.is_active == True %} {% else %} {%endif%} {% endfor %}
SL. Brand Name Status Created Action
{{ forloop.counter }} {{ item.name }}ActiveInactive{{ item.created_at }}
{% if brand.has_previous %} Previous {% endif %}
{% if brand.has_next %} Next {% endif %}

Showing {{ brand.number }}/{{ brand.paginator.num_pages }}

{% else %} {% endif %}
{% endblock body %}